home *** CD-ROM | disk | FTP | other *** search
- #ifndef WORKBENCH_WORKBENCH_H
- #define WORKBENCH_WORKBENCH_H
- #ifndef EXEC_TYPES_H
- #include "exec/types.h"
- #endif !EXEC_TYPES_H
- #ifndef EXEC_NODES_H
- #include "exec/nodes.h"
- #endif !EXEC_NODES_H
- #ifndef EXEC_LISTS_H
- #include "exec/lists.h"
- #endif !EXEC_LISTS_H
- #ifndef EXEC_TASKS_H
- #include "exec/tasks.h"
- #endif !EXEC_TASKS_H
- #ifndef INTUITION_INTUITION_H
- #include "intuition/intuition.h"
- #endif !INTUITION_INTUITION_H
- #define WBDISK 1
- #define WBDRAWER 2
- #define WBTOOL 3
- #define WBPROJECT 4
- #define WBGARBAGE 5
- #define WBDEVICE 6
- #define WBKICK 7
- struct DrawerData {
- struct NewWindow dd_NewWindow;
- LONG dd_CurrentX;
- LONG dd_CurrentY;
- };
- #define DRAWERDATAFILESIZE (sizeof( struct DrawerData ))
- struct DiskObject {
- UWORD do_Magic;
- UWORD do_Version;
- struct Gadget do_Gadget;
- UBYTE do_Type;
- char * do_DefaultTool;
- char ** do_ToolTypes;
- LONG do_CurrentX;
- LONG do_CurrentY;
- struct DrawerData * do_DrawerData;
- char * do_ToolWindow;
- LONG do_StackSize;
- };
- #define WB_DISKMAGIC 0xe310
- #define WB_DISKVERSION 1
- struct FreeList {
- WORD fl_NumFree;
- struct List fl_MemList;
- };
- #define MTYPE_PSTD 1
- #define MTYPE_TOOLEXIT 2
- #define MTYPE_DISKCHANGE 3
- #define MTYPE_TIMER 4
- #define MTYPE_CLOSEDOWN 5
- #define MTYPE_IOPROC 6
- #define GADGBACKFILL 0x0001
- #define NO_ICON_POSITION (0x80000000)
- #endif
-